 :root {
    --primary-color: #2c7da0;      /* Medical Blue */
    --secondary-color: #e9f5ff;    /* Light Clinic Blue */
    --accent-color: #25d366;       /* WhatsApp Green */
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.navbar {
    background-color: #e9f5ff; /* Soft Medical Blue */
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.navbar-brand {
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary-color) !important;
}
.navbar-brand span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}
/* Navbar links – Clinic Style */
.navbar-nav .nav-link {
    color: #0b3c5d;
    font-weight: 500;
    padding: 10px 18px;
    margin: 0 6px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover {
    background: #cfe9ff;
    color: #0b3c5d;
    transform: translateY(-2px);
}
.banner-section {
    background-color: #0b3c5d;
    height: 50vh;
}
.hero-banner {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd, #084298);
}

.banner-content {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.banner-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
}



/* Mobile View */
@media (max-width: 768px) {

    .banner-content {
        min-height: 200px;
        padding: 15px;
    }

    .banner-content h1 {
        font-size: 22px;
        line-height: 1.3;
        word-break: break-word;
    }
}

/* About Doctor Section */

.py-5{
    padding-top: 1rem !important;
}

.contact-container {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            overflow: hidden;
            margin-top: 50px;
        }

        /* Left Side: Form Section */
        .form-section {
            padding: 40px;
        }

        .form-control {
            background-color: #fbfbfb;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 12px;
            margin-bottom: 15px;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: #0056b3;
        }

        .btn-send {
            background-color: #0056b3;
            color: white;
            padding: 10px 30px;
            border: none;
            border-radius: 4px;
            font-weight: 600;
        }

        .btn-send:hover {
            background-color: #004494;
            color: white;
        }

        /* Right Side: Info Section */
        .info-section {
            padding: 40px;
            border-left: 1px solid #f0f0f0;
        }

        .info-title {
            color: #002147;
            font-weight: 700;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .info-text {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

       .contact-item {
    /* display: flex; */
    align-items: center;
    margin-bottom: 25px;
    width: 100%; /* Extra Safety */
}

.icon-box {
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #0056b3;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-detail {
    color: #002147;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    overflow: visible; /* Taaki number kate nahi */
}

/* Number Link ke liye special fix */
.contact-detail a {
    text-decoration: none;
    color: inherit;
    white-space: nowrap; /* Sabse Zaroori: number kabhi tootega nahi */
    display: inline-block;
}

.contact-detail a:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}
        /* Mobile Adjustments */
        @media (max-width: 768px) {
            .info-section {
                border-left: none;
                border-top: 1px solid #f0f0f0;
                padding: 30px 20px;
            }
            .form-section {
                padding: 30px 20px;
            }
            .info-title {
                font-size: 1.5rem;
            }
        }
.newsletter-title {
            color: #001d4a; 
            font-weight: 700;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .newsletter-form-container {
            max-width: 800px; 
            margin: 0 auto;
        }

        .email-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
            display: block;
            text-align: left;
        }

        .asterisk {
            color: red;
        }

        .custom-input-group {
            display: flex;
            border: 1px solid #ced4da;
            background-color: white;
        }

        .custom-input {
            border: none;
            flex-grow: 1;
            padding: 12px 15px;
            outline: none;
        }

        .submit-btn {
            background-color: #005bc4; 
            color: white;
            border: none;
            padding: 12px 35px;
            font-weight: 600;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background-color: #00469b;
        }

        /* Success Message Styling */
        #success-message {
            display: none; /* Shuruat mein hidden rahega */
            background-color: #d1e7dd;
            color: #0f5132;
            padding: 20px;
            border-radius: 4px;
            font-weight: 600;
            margin-top: 20px;
        }
.footer-section {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}


.footer-title a {
  text-decoration: none; 
  color: inherit;        
  transition: 0.3s;      
}


.footer-title a:hover {
  color: #0d6efd;        
}

.footer-text {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.footer-links,
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-hours li {
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}

.footer-links li a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #0d6efd;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #f2f2f2;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 8px;
  color: #0d6efd;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #0d6efd;
  color: #fff;
}
.social-icons a i {
  font-size: 18px; 
  display: block;  
}

.footer {  color: black; padding: 20px 0; margin-top: 50px; } 